.top-search-social-nav {
			float: right;
			margin-top: 18px;
		}

			.top-search-social-nav ul {
				padding: 0;
				margin: 0;
				list-style: none;
				display: flex;
				gap: 12px;
			}

			.top-search-social-nav img {
				width: 32px;
				height: 32px;
			}

		/* NAVIGATION */

		.topnav {
			background: #0f4c81;
		}

			.topnav .container {
				display: flex;
				flex-wrap: wrap;
				align-items: center;
			}

			.topnav a {
				color: #ffffff;
				text-decoration: none;
				padding: 16px 18px;
				display: block;
				font-size: 15px;
				font-weight: 500;
				transition: 0.3s;
			}

				.topnav a:hover,
				.topnav a.active {
					background: #1d78c1;
				}

			.topnav .icon {
				display: none;
			}

		/* PRODUCTS SECTION */

		.meeta-products-page {
			padding: 70px 20px;
		}

		.meeta-products-wrapper {
			max-width: 1350px;
			margin: auto;
		}

		.meeta-products-title {
			text-align: center;
			font-size: 42px;
			font-weight: 700;
			color: #111827;
			margin-bottom: 20px;
		}

		.meeta-products-subtitle {
			max-width: 1050px;
			margin: 0 auto 60px;
			text-align: center;
			font-size: 17px;
			line-height: 1.9;
			color: #444;
		}

		.meeta-products-grid {
			display: grid;
			grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
			gap: 30px;
		}

		.meeta-product-card {
			background: #ffffff;
			border-radius: 18px;
			overflow: hidden;
			text-decoration: none;
			box-shadow: 0 8px 30px rgba(0,0,0,0.08);
			transition: 0.3s;
			text-align: center;
			padding-bottom: 25px;
		}

			.meeta-product-card:hover {
				transform: translateY(-8px);
				text-decoration: none;
			}

		.meeta-product-image {
			background: #ffffff;
			padding: 20px;
		}

			.meeta-product-image img {
				width: 100%;
				height: 260px;
				object-fit: contain;
			}

		.meeta-product-card h3 {
			font-size: 28px;
			color: #111827;
			margin-top: 10px;
			margin-bottom: 12px;
			font-weight: 700;
		}

		.meeta-range {
			font-size: 16px;
			color: #555;
			margin-bottom: 20px;
		}

		.meeta-view {
			display: inline-block;
			background: #0f74c8;
			color: #ffffff;
			padding: 12px 22px;
			border-radius: 8px;
			font-weight: 600;
			transition: 0.3s;
		}

		.meeta-product-card:hover .meeta-view {
			background: #095da5;
		}

		/* FOOTER */

		.meeta-footer {
			background: #0f172a;
			color: #ffffff;
			padding-top: 60px;
			margin-top: 40px;
		}

		.meeta-footer-container {
			max-width: 1300px;
			margin: auto;
			display: grid;
			grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
			gap: 40px;
			padding: 0 20px 50px;
		}

		.meeta-footer h3,
		.meeta-footer h4 {
			margin-bottom: 20px;
		}

		.meeta-footer p,
		.meeta-footer li {
			font-size: 15px;
			line-height: 1.8;
			color: #d1d5db;
		}

		.meeta-footer ul {
			padding: 0;
			list-style: none;
		}

		.meeta-footer a {
			color: #dbeafe;
			text-decoration: none;
		}

			.meeta-footer a:hover {
				color: #ffffff;
			}

		.meeta-footer-bottom {
			border-top: 1px solid rgba(255,255,255,0.15);
			text-align: center;
			padding: 20px;
			font-size: 14px;
		}

		/* MOBILE */

		@media(max-width:768px) {

			.topnav a {
				display: none;
			}

				.topnav a.icon {
					display: block;
					margin-left: auto;
				}

			.topnav.responsive {
				position: relative;
			}

				.topnav.responsive a {
					display: block;
					width: 100%;
					text-align: left;
				}

			.meeta-products-title {
				font-size: 32px;
			}

			.meeta-products-subtitle {
				font-size: 16px;
			}
		}